home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 60.zip / BS1 part 60 / Kick Pascal v2.10 d1.adf / INCLUDE / workbench / startup.h < prev    next >
Text File  |  1990-11-01  |  438b  |  22 lines

  1. {$if not def WORKBENCH_STARTUP_H}
  2. Const WORKBENCH_STARTUP_H=4711;
  3. {$if not def EXEC_PORTS_H;incl"exec/ports.h";endif}
  4. {$if not def LIBRARIES_DOS_H;incl"libraries/dos.h";endif}
  5. Type
  6. p_WBStartup=^WBStartup;
  7. p_WBArg=^WBArg;
  8. WBArg=Record
  9.  wa_Lock:BPTR;
  10.  wa_Name:Str
  11. End;
  12. WBStartup=Record
  13.  sm_Message:Message;
  14.  sm_Process:p_MsgPort;
  15.  sm_Segment:BPTR;
  16.  sm_NumArgs:Long;
  17.  sm_ToolWindow:Str;
  18.  sm_ArgList:^ARRAY[1..MaxInt] OF WBArg
  19. End;
  20. {$endif}
  21.  
  22.